home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / prolog / modprolg / mod-prol.lha / Prolog / cmplib / src / $alloctvars1.P next >
Text File  |  1992-01-24  |  6KB  |  152 lines

  1. /************************************************************************
  2. *                                    *
  3. * The SB-Prolog System                            *
  4. * Copyright SUNY at Stony Brook, 1986; University of Arizona, 1987    *
  5. *                                    *
  6. ************************************************************************/
  7.  
  8. /*-----------------------------------------------------------------
  9. SB-Prolog is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY.  No author or distributor
  11. accepts responsibility to anyone for the consequences of using it
  12. or for whether it serves any particular purpose or works at all,
  13. unless he says so in writing.  Refer to the SB-Prolog General Public
  14. License for full details.
  15.  
  16. Everyone is granted permission to copy, modify and redistribute
  17. SB-Prolog, but only under the conditions described in the
  18. SB-Prolog General Public License.   A copy of this license is
  19. supposed to have been given to you along with SB-Prolog so you
  20. can know your rights and responsibilities.  It should be in a
  21. file named COPYING.  Among other things, the copyright notice
  22. and this notice must be preserved on all copies. 
  23. ------------------------------------------------------------------ */
  24. /* $alloctvars1.P */
  25.  
  26. /* **********************************************************************
  27. $alloctvars1_export([$alloc_tvars/3]).
  28.  
  29. $alloctvars1_use : $computil1, $blist, $listutil1, $meta
  30. ********************************************************************** */
  31.  
  32. $alloc_tvars([],_,_).
  33. $alloc_tvars([v(Vid,[o(M,Path,Lit,N,s,P)])|Vars],st(Clist,Vlist),LastGoals) :-
  34.     $check_type(P,t),
  35.     $misc(P,Misc), $member1(use(Use),Misc), $member1(nouse(NoUse),Misc),
  36.     $alloctvars_chkconflicts(Vid,Lit,M,[o(M,Path,Lit,N,s,P)],
  37.                         Clist,Vlist,Use,NoUse,LastGoals),
  38.     $alloc_tvars(Vars,st(Clist,Vlist),LastGoals).
  39. $alloc_tvars([v(Vid,[O1|ORest])|Vars],Syms,LastGoals) :-
  40.     $alloc1(Vid,O1,ORest,Syms,LastGoals),
  41.     $alloc_tvars(Vars,Syms,LastGoals).
  42.  
  43.  
  44. $alloctvars_chkconflicts(Vid,Lit0,M,Olist,Clist,Vlist,Use,NoUse,LastGoals) :-
  45.     ((Lit0 =:= 0, Lit1 = 1) ;    /* head */
  46.      (Lit0 =\= 0, Lit1 = Lit0)
  47.     ),
  48.     $alloc_get_first_noninline(Lit1,Clist,0,Nargs),
  49.     $alloctvars_chkconflicts1(Vid,Nargs,M,Lit1,
  50.                 Olist,Vlist,Use,NoUse,LastGoals).
  51.  
  52. $alloctvars_chkconflicts1(_,0,_,_,_,_,_,_,_).
  53. $alloctvars_chkconflicts1(Vid,N,M,Lit,Olist,Vlist,Use,NoUse,LastGoals) :-
  54.     $alloc_collect_lastgoals(Lit,LastGoals,ChLastGoals),
  55.     (($alloc_no_conflict(Vid,N,ChLastGoals),
  56.       $member2(o(_,_,Lit,N,t,_),Olist),
  57.       $member1(N, Use),
  58.       $alloc_request(M,N,Lit,VList)) ;
  59.      ($member1(N, NoUse))
  60.     ),
  61.     N1 is N - 1,
  62.     $alloctvars_chkconflicts1(Vid,N1,M,Lit,
  63.                 Olist,Vlist,Use,NoUse,LastGoals).
  64.  
  65.  
  66. $alloc_get_first_noninline(Lit,[],N,N).
  67. $alloc_get_first_noninline(Lit0,[c(Lit1,Nargs0,Prag)|CRest],Nargs1,Nargs) :-
  68.     ((Lit0 =:= Lit1,
  69.       ($member2(inline,Prag) ->
  70.         Nargs2 = Nargs1 ;
  71.         $max(Nargs0,Nargs1,Nargs2)
  72.       )
  73.      ) ;
  74.      (Lit0 =\= Lit1, Nargs2 = Nargs1)
  75.     ),
  76.     $alloc_get_first_noninline(Lit0,CRest,Nargs2,Nargs).
  77.  
  78.  
  79. /*   "$alloc_request" goes through the list of variable occurrences, and for
  80.       each variable in the head with an occurrence number less than or equal
  81.       to M, and requests that it not use register N, by adding the
  82.       pragma `nouse(N)'.                        */
  83.  
  84. :- index($alloc_request,4,4).
  85.  
  86. $alloc_request(_,_,_,[]).
  87. $alloc_request(M,N,Lit,[v(Vid,Occlist)|VRest]) :-
  88.     $alloc_request1(M,N,Lit,Occlist),
  89.     $alloc_request(M,N,Lit,VRest).
  90.  
  91.  
  92. $alloc_request1(_,_,_,X) :- var(X).
  93. $alloc_request1(M,_,Lit,[o(M1,Path,L,_,_,_)|_]) :-
  94.     ((M1 >= M) ; (L =\= Lit, L =\= Lit - 1)).
  95. $alloc_request1(M,N,Lit,[o(M1,Path,L,_,_,P)|ORest]) :-
  96.     M1 < M,
  97.     ((L is Lit) ; (L is Lit - 1)),
  98.     $misc(P,Misc), 
  99.     (($member1(use(Uselist),Misc), $member2(N,Uselist)) ;
  100.      ($member1(nouse(Nouselist),Misc), $member1(N,Nouselist))
  101.     ).
  102. $alloc_request1(_,_,_,[o(_,_,_,_,_,P)|_]) :- not($check_type(P,t)).
  103.  
  104. /* "$alloc1" does the first phase of register allocation for temporary
  105.     variables.  It adds `use(N)' pragmas to guide usage of registers at
  106.     the actual allocation time, and also adds `nouse(N)' pragmas to
  107.     indicate which registers should not be used at some point.        */
  108.  
  109. $alloc1(_,_,[],_,_).
  110. $alloc1(Vid,O1, OList, st(_,Vlist),LastGoals) :-
  111.     O1 = o(M,0,0,N,t,P1),
  112.     $check_type(P1,t),
  113.     $alloc_collect_lastgoals(1,LastGoals,ChLastGoals),
  114.     $alloc_no_conflict(Vid,N,ChLastGoals),
  115.     $member1(o(_,_,1,N,t,P2),OList),        /* args in same place    */
  116.     $misc(P1,Misc), $member1(use(L1),Misc),
  117.     $member1(N,L1),
  118.     $alloc_request(M,N,0,Vlist),
  119.     OList = [_|ORest],
  120.     $alloc1(Vid,O1, ORest, Vlist,LastGoals).
  121. $alloc1(Vid,o(M,Path,Lit,M1,_,P1),OList, st(Clist,Vlist),LastGoals) :-
  122.     $check_type(P1,t), $misc(P1,Misc),
  123.     $member1(use(Use),Misc), $member1(nouse(NoUse),Misc),
  124.     $alloctvars_chkconflicts(Vid,Lit,M,OList,Clist,Vlist,Use,NoUse,LastGoals).
  125. $alloc1(_,_,_,_,_).
  126.  
  127.  
  128. $alloc_collect_lastgoals(Chunk,[],[]).
  129. $alloc_collect_lastgoals(Chunk,[chunk(Chunk0,Call)|Rest],ChLastGoals) :-
  130.     ((Chunk =:= Chunk0, ChLastGoals = [Call|ChRest]) ;
  131.      (Chunk =\= Chunk0, ChLastGoals = ChRest)
  132.     ),
  133.     $alloc_collect_lastgoals(Chunk,Rest,ChRest).
  134.  
  135.  
  136. $alloc_no_conflict(Vid,N,[]).
  137. $alloc_no_conflict(Vid,N,['_call'(P,Args,_)|CRest]) :-
  138.     $length(Args,Arity),
  139.     ((Arity < N ) ;
  140.      (Arity >= N, $alloc_check_args(Args,N,Vid))
  141.     ),
  142.     $alloc_no_conflict(Vid,N,CRest).
  143.  
  144. $alloc_check_args([v(Vid,_)|_],1,Vid).
  145. $alloc_check_args([_|Args],N,Vid) :-
  146.     N > 1,
  147.     N1 is N-1,
  148.     $alloc_check_args(Args,N1,Vid).
  149.  
  150. /* ---------------------------- $alloctvars1.P ---------------------------- */
  151.  
  152.